e7c187f9124b010dee8b2464ec2fc5bb2c0d75f7,app/src/main/java/com/github/javiersantos/materialstyleddialogs/demo/MainActivity.java,MainActivity,onCreate,#Bundle#,30
Before Change
.withDialogAnimation(true)
.setTitle("Awesome!")
.setDescription("Glad to see you like MaterialStyledDialogs! If you're up for it, we would really appreciate you reviewing us.")
.setHeaderColor(R.color.dialog_1)
.setPositive("Google Play", new MaterialDialog.SingleButtonCallback() {
@Override
public void onClick(MaterialDialog dialog, DialogAction which) {
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/apps/details?id=" + context.getPackageName())));
After Change
.withDialogAnimation(true)
.setTitle("Awesome!")
.setDescription("Glad to see you like MaterialStyledDialogs! If you're up for it, we would really appreciate you reviewing us.")
.setHeaderColor(R.color.dialog_1)
.setPositiveText("Google Play")
.onPositive(new MaterialDialog.SingleButtonCallback() {
@Override
public void onClick(@NonNull MaterialDialog dialog, @NonNull DialogAction which) {
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/apps/details?id=" + context.getPackageName())));